home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / Utilities / Misc / GMS / GMSDev / Includes / misc / time.h next >
Encoding:
C/C++ Source or Header  |  1997-10-11  |  717 b   |  31 lines

  1. #ifndef MISC_TIME_H
  2. #define MISC_TIME_H TRUE
  3.  
  4. /*
  5. **  $VER: time.h V0.9B
  6. **
  7. **  Time Object.
  8. **
  9. **  (C) Copyright 1996-1997 DreamWorld Productions.
  10. **      All Rights Reserved
  11. */
  12.  
  13. /****************************************************************************
  14. ** Time Object.
  15. */
  16.  
  17. #define TIMEVERSION 1
  18.  
  19. struct Time {
  20.   struct Head Head;  /* Standard header */
  21.   WORD   Year;       /* Year   (-ve for BC, +ve for AD) */
  22.   WORD   Month;      /* Month  (1 - 12) */
  23.   WORD   Day;        /* Day    (1 - 31) */
  24.   WORD   Hour;       /* Hour   (0 - 23) */
  25.   WORD   Minute;     /* Minute (0 - 59) */
  26.   WORD   Second;     /* Second (0 - 59) */
  27.   WORD   Micro;      /* Micro  (0 - 99 micro-seconds) */
  28. };
  29.  
  30. #endif /* MISC_TIME_H */
  31.